home *** CD-ROM | disk | FTP | other *** search
/ Beano - Dennis the Menace Cardz / Beano Cardz: Dennis the Menace.iso / pc / email.dxr / 00039_delete file.ls < prev    next >
Encoding:
Text File  |  2001-04-19  |  205 b   |  12 lines

  1. property psTempFilePath
  2.  
  3. on beginSprite me
  4.   psTempFilePath = getOSDirectory() & "temp.jpg"
  5. end
  6.  
  7. on emailSent me
  8.   tFileIo = xtra("fileio").new()
  9.   tFileIo.openFile(psTempFilePath, 0)
  10.   delete tFileIo
  11. end
  12.